open html file in browser using c++

291

open html file in browser using c++ -

#include <windows.h>

void main()
{  
   ShellExecute(NULL, "open", "http://dreamincode.net",
                NULL, NULL, SW_SHOWNORMAL);
}

Comments

Submit
0 Comments